home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2000 May
/
PCWorld_2000-05_cd.bin
/
Software
/
TemaCD
/
povray
/
povwin3.exe
/
%MAINDIR%
/
Insert Menu
/
Misc. Directives
/
while.txt
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
2000-04-06
|
255 b
|
11 lines
// Create 10 balls along X axis, from 0 to 9
#declare BallCount = 0
#while (BallCount < 10)
sphere
{
<BallCount,0,0>, // NOTE: <0,0,0>, <1,0,0>, <2,0,0>, etc.
0.5
}
#declare BallCount = BallCount+1 // increment our counter
#end